home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 11
/
Amiga Format AFCD11 (Feb 1997, Issue 95).iso
/
-look_here_1st!-
/
coverdisks
/
turbocalc2
/
arexx
/
hello.rexx
next >
Wrap
OS/2 REXX Batch file
|
1997-01-31
|
357b
|
19 lines
/*
* Hello.rexx
* Example-ARexx-Script of TurboCalc2.0 © 1993 by M.Friedrich
*
* This examples asks for your name (in TurboCalc)
* reads the name and prints it (to your shell)
*/
Options FailAt 0
Options Results
ADDRESS TCALC
'INPUT "Please enter your name" "Your Name:" C3'
GETVALUE C3
say "Hello" RESULT||", have a lot of fun with TurboCalc"